home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 May / Designer's Club 1998 May.iso / pc / IDEASRC / BEVEL.DIR / 00222.ls < prev    next >
Encoding:
Text File  |  1998-04-06  |  465 b   |  22 lines

  1. on exitFrame
  2.   go(the frame)
  3.   repeat with n = 32 to 35
  4.     if rollOver(n) then
  5.       set the visible of sprite n to 0
  6.     end if
  7.     if rollOver(n) then
  8.       set the visible of sprite (n + 5) to 1
  9.     end if
  10.     updateStage()
  11.   end repeat
  12.   repeat with n = 32 to 35
  13.     if not rollOver(n) then
  14.       set the visible of sprite n to 1
  15.     end if
  16.     if not rollOver(n) then
  17.       set the visible of sprite (n + 5) to 0
  18.     end if
  19.     updateStage()
  20.   end repeat
  21. end
  22.